home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / trinity.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  93 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10501);
  10.  script_version ("$Revision: 1.5 $");
  11.  script_cve_id("CAN-2000-0138");
  12.  
  13.  name["english"] = "Trinity v3 Detect";
  14.  name["francais"] = "Detection de Trinity v3";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote host appears to be running
  20. Trinity v3, which is a trojan that can be 
  21. used to control your system or make it 
  22. attack another network (this is 
  23. actually called a distributed denial
  24. of service attack tool)
  25.  
  26. It is very likely that this host
  27. has been compromised
  28.  
  29. Solution : Restore your system from backups,
  30.        contact CERT and your local
  31.        authorities
  32.  
  33. Risk factor : Critical";
  34.  
  35.  
  36.  
  37.  desc["francais"] = "
  38. Le systeme distant semble faire tourner
  39. trinity v3 qui peut etre utilisΘ pour prendre 
  40. le controle de celui-ci ou pour attaquer un 
  41. autre rΘseau (outil de dΘni de service 
  42. distribuΘ)
  43.  
  44. Il est trΦs probable que ce systeme a ΘtΘ
  45. compromis
  46.  
  47. Solution : reinstallez votre systΦme α partir
  48.        des sauvegardes, et contactez le CERT
  49.        et les autoritΘs locales
  50.        
  51. Facteur de risque : Critique";
  52.  
  53.  
  54.  script_description(english:desc["english"], francais:desc["francais"]);
  55.  
  56.  summary["english"] = "Detects the presence of trinity v3";
  57.  summary["francais"] = "Detecte la prΘsence de trinity v3";
  58.  
  59.  script_summary(english:summary["english"], francais:summary["francais"]);
  60.  
  61.  script_category(ACT_GATHER_INFO);
  62.  
  63.  
  64.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  65.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  66.  family["english"] = "Backdoors";
  67.  family["francais"] = "Backdoors";
  68.  script_family(english:family["english"], francais:family["francais"]);
  69.  script_require_ports(33270);
  70.  
  71.  exit(0);
  72. }
  73.  
  74. #
  75. # The script code starts here
  76. #
  77.  
  78. if(get_port_state(33270))
  79. {
  80.  soc = open_sock_tcp(33270);
  81.  if(soc)
  82.  {
  83.   req = string("!@#\r\n");
  84.   send(socket:soc, data:req);
  85.   r = recv(socket:soc, length:16000);
  86.   req = string("id\r\n");
  87.   send(socket:soc, data:req);
  88.   r = recv(socket:soc, length:16000);
  89.   if("uid" >< r)security_hole(33270);
  90.   close(soc);
  91.  }
  92. }
  93.